home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Magazine / Morphos / GCC / ppc-amigaos / include / clib / datatypes_protos.h < prev    next >
C/C++ Source or Header  |  2000-02-28  |  3KB  |  79 lines

  1. #ifndef  CLIB_DATATYPES_PROTOS_H
  2. #define  CLIB_DATATYPES_PROTOS_H
  3.  
  4. /*
  5. **    $VER: datatypes_protos.h 39.4 (27.5.93)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  EXEC_LISTS_H
  18. #include <exec/lists.h>
  19. #endif
  20. #ifndef  INTUITION_INTUITION_H
  21. #include <intuition/intuition.h>
  22. #endif
  23. #ifndef  INTUITION_CLASSES_H
  24. #include <intuition/classes.h>
  25. #endif
  26. #ifndef  INTUITION_CLASSUSR_H
  27. #include <intuition/classusr.h>
  28. #endif
  29. #ifndef  INTUITION_GADGETCLASS_H
  30. #include <intuition/gadgetclass.h>
  31. #endif
  32. #ifndef  UTILITY_TAGITEM_H
  33. #include <utility/tagitem.h>
  34. #endif
  35. #ifndef  DATATYPES_DATATYPES_H
  36. #include <datatypes/datatypes.h>
  37. #endif
  38. #ifndef  REXX_STORAGE_H
  39. #include <rexx/storage.h>
  40. #endif
  41. /*--- functions in V40 or higher (Release 3.1) ---*/
  42.  
  43. /* Public entries */
  44.  
  45. struct DataType *ObtainDataTypeA( unsigned long type, APTR handle,
  46.     struct TagItem *attrs );
  47. struct DataType *ObtainDataType( unsigned long type, APTR handle, Tag Tag1,
  48.     ... );
  49. void ReleaseDataType( struct DataType *dt );
  50. Object *NewDTObjectA( APTR name, struct TagItem *attrs );
  51. Object *NewDTObject( APTR name, Tag Tag1, ... );
  52. void DisposeDTObject( Object *o );
  53. ULONG SetDTAttrsA( Object *o, struct Window *win, struct Requester *req,
  54.     struct TagItem *attrs );
  55. ULONG SetDTAttrs( Object *o, struct Window *win, struct Requester *req,
  56.     Tag Tag1, ... );
  57. ULONG GetDTAttrsA( Object *o, struct TagItem *attrs );
  58. ULONG GetDTAttrs( Object *o, Tag Tag1, ... );
  59. LONG AddDTObject( struct Window *win, struct Requester *req, Object *o,
  60.     long pos );
  61. void RefreshDTObjectA( Object *o, struct Window *win, struct Requester *req,
  62.     struct TagItem *attrs );
  63. void RefreshDTObjects( Object *o, struct Window *win, struct Requester *req,
  64.     Tag Tag1, ... );
  65. ULONG DoAsyncLayout( Object *o, struct gpLayout *gpl );
  66. ULONG DoDTMethodA( Object *o, struct Window *win, struct Requester *req,
  67.     Msg msg );
  68. ULONG DoDTMethod( Object *o, struct Window *win, struct Requester *req,
  69.     unsigned long data, ... );
  70. LONG RemoveDTObject( struct Window *win, Object *o );
  71. ULONG *GetDTMethods( Object *object );
  72. struct DTMethods *GetDTTriggerMethods( Object *object );
  73. ULONG PrintDTObjectA( Object *o, struct Window *w, struct Requester *r,
  74.     struct dtPrint *msg );
  75. ULONG PrintDTObject( Object *o, struct Window *w, struct Requester *r,
  76.     unsigned long data, ... );
  77. STRPTR GetDTString( unsigned long id );
  78. #endif     /* CLIB_DATATYPES_PROTOS_H */
  79.